home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 October / EnigmA AMIGA RUN 22 (1997)(G.R. Edizioni)(IT)[!][issue 1997-10 & 11][EAR-CD VI].iso / earcd / util3 / tolmgrlc.lha / ToolManager / Source / Locale / DMakefile < prev    next >
Makefile  |  1997-06-07  |  1KB  |  41 lines

  1. #
  2. # DMakefile  V3.0
  3. #
  4. # Makefile for ToolManager 3.0 (Locale: Library & Tools)
  5. #
  6. # Copyright (C) 1990-97 Stefan Becker
  7. #
  8. # This source code is for educational purposes only. You may study it
  9. # and copy ideas or algorithms from it for your own projects. It is
  10. # not allowed to use any of the source codes (in full or in parts)
  11. # in other programs. Especially it is not allowed to create variants
  12. # of ToolManager or ToolManager-like programs from this source code.
  13. #
  14. LANG  = dansk deutsch français italiano polski srpski svenska
  15. CDIR  = //Locale/Catalogs/
  16. CATD  = $(LANG:"*":"$(CDIR)*")
  17. CATF  = $(LANG:"*":"$(CDIR)*/toolmanager.catalog")
  18. TRANS = $(LANG:"*":"*.ct")
  19. DESC  = toolmanager.cd
  20. HEAD  = toolmanager.h
  21. EMPTY = empty.ct
  22.  
  23. all : $(HEAD) $(EMPTY) $(CATD) $(CATF)
  24.  
  25. $(HEAD) : $(DESC)
  26.       CatComp $(DESC) CFILE %(left) NOARRAY NOBLOCK NOCODE
  27.  
  28. $(EMPTY) : $(DESC)
  29.       CatComp $(DESC) CTFILE %(left)
  30.  
  31. $(CATF) : $(TRANS)
  32.       CatComp $(DESC) %(right) CATALOG %(left)
  33.  
  34. $(CATF) : $(DESC)
  35.  
  36. $(CATD) : $(CATD)
  37.       MakeDir %(left)
  38.  
  39. clean   :
  40.       -Delete $(HEAD) $(EMPTY)
  41.